home *** CD-ROM | disk | FTP | other *** search
- #include "qtools.h"
-
- /*
- * ============
- * main
- * ============
- */
- int main(int argc, char **argv)
- {
- FILE *srcFile;
-
- if(!srcFile = fopen(argv[1], "r")
- if(!srcFile = fopen("progs.src", "r")
- eprintf("failed to open sourcefile\n");
-
- if(srcFile) {
- if(qcc(srcFile, "", OP_ADD) == FALSE)
- eprintf("failed to compile sourcefile\n");
-
- fclose(srcFile);
- }
-
- return 0;
- }
-